home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / PSPad editor 4.5.4 build 2356 beta / pspad454inst_en.exe / {app} / Context / Extended Clipboard Scripting Language.DEF < prev    next >
Text File  |  2006-03-10  |  958b  |  38 lines

  1. ; PSPad clip definition file for Extended Clipboard Scripting Language
  2. ; author:  MOE
  3. ; last revision 09. Mrz 2006  14:42
  4. ;
  5. [PRINT(sTEXT) | Output sText + NewLine...]
  6. PRINT()
  7.  
  8. [WRITE(sTEXT) | Output sText w/o NewLine]
  9. WRITE()
  10.  
  11. [CLS | Clear the Text Output...]
  12. CLS
  13.  
  14. [INPUTBOX(sPrompt, sTitle, sDefault) | Display an Inputbox ]
  15. INPUTBOX( , , )
  16.  
  17. [MSGBOX(sMessage, lStyle, sTitle) | Display a Messagebox ]
  18. MSGBOX( , , )
  19.  
  20. [PRINT_D(sTEXT)) | Print sTEXT to the standart printer]
  21. PRINT_D()
  22.  
  23. [FINISH_D | Finish Printing]
  24. FINISH_D
  25.  
  26. [INSTR(lStart, sTEXT, sTEXT2) | Find sTEXT2 in sTEXT from position lStart]
  27. INSTR( , , )
  28.  
  29. [INSTRREV(lStart, sTEXT, sTEXT2) | Find sTEXT2 in sTEXT from position lStart - reverse]
  30. INSTRREV( , , )
  31.  
  32. [REPLACE(sTEXT, sTEXT1, sTEXT2) | Replace sTEXT1 in sTEXT with sTEXT2]
  33. REPLACE( , , )
  34.  
  35. [MID(sTEXT, lStart, lLength) | Get the lLength characters from sTEXT starting with the lStart character]
  36. MID( , , )
  37.  
  38.